home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  38 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. #ifndef __AFXEXT_H__
  16. #include <afxext.h>         // for access to CToolBar and CStatusBar
  17. #endif
  18.  
  19. class CMainFrame : public CMDIFrameWnd
  20. {
  21.     DECLARE_DYNCREATE(CMainFrame)
  22. public:
  23.     void InitialShowWindow(UINT nCmdShow);
  24.  
  25. protected:
  26.     CStatusBar  m_wndStatusBar;
  27.     CToolBar    m_wndToolBar;
  28.  
  29. protected:
  30.     //{{AFX_MSG(CMainFrame)
  31.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  32.     afx_msg void OnClose();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.